home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Views / Standard Views / ProgressWindow.h < prev    next >
Text File  |  1997-06-28  |  624b  |  36 lines

  1. // ProgressWindow.h
  2.  
  3. #ifndef ProgressWindow_h
  4. #define ProgressWindow_h
  5.  
  6. #ifndef Window_h
  7. #include "Window.h"
  8. #endif
  9. #ifndef GrowArrangement_h
  10. #include "GrowArrangement.h"
  11. #endif
  12. #ifndef GrayWhiteView_h
  13. #include "GrayWhiteView.h"
  14. #endif
  15. #ifndef ProgressView_h
  16. #include "ProgressView.h"
  17. #endif
  18.  
  19. class ProgressWindow: public Window
  20.   {
  21.     private:
  22.         GrowArrangement root;
  23.         ProgressView bar;
  24.         GrayWhiteView right;
  25.         GrayWhiteView bottom;
  26.         
  27.     public:
  28.         ProgressWindow( const WindowInitializer&,
  29.                              const Progress& );
  30.   };
  31.  
  32. ProgressWindow *NewProgressWindow( const WindowInitializer&,
  33.                                               const Progress& );
  34.  
  35. #endif
  36.